home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / PickMeUp.sit / Pick Me Up / source code / Movie app source / pickmeUp97 / source / CMovieWind.h < prev    next >
Text File  |  1997-06-27  |  1KB  |  48 lines

  1. // ===========================================================================
  2. //    CMovieWind.h               ©1996-1997 Wootech Corporation. All rights reserved.
  3. // ===========================================================================
  4. /*
  5.     Insert Comments Here.
  6.  
  7. */
  8. /*
  9.       *    $Workfile: MyTextEdit.cp $
  10.     *    $Modtime: 6/20/97 6:18 PM $
  11.     *    $Revision: 2 $
  12.     *    $Date: 6/20/97 6:18 PM $
  13.     *    $History: MyTextEdit.cp $
  14. */
  15. #pragma once
  16.  
  17. const        ResIDT        kMoviePaneID    = 101;
  18. const        ResIDT        kFeelBetterBut    = 102;
  19. const        ResIDT        kMoreButton        = 103;
  20. const        ResIDT        kStopPlaying    = 104;
  21.  
  22. class CMoviePane;
  23.  
  24. class CMovieWind : public LDialogBox, public LBroadcaster
  25. {
  26. public:
  27.     enum{class_ID = 'MWnd'};
  28.     CMovieWind(LStream*  inStream);
  29.     ~CMovieWind();
  30.     void ListenToMessage(MessageT  inMessage, void*  ioParam);
  31.     void FinishCreateSelf();
  32.     void    Play();
  33.     
  34.     /*
  35.     Boolean    ObeyCommand(CommandT  inCommand, void*  ioParam);
  36.     void    FindCommandStatus(
  37.                             CommandT    inCommand,
  38.                             Boolean        &outEnabled,
  39.                             Boolean        &outUsesMark,
  40.                             Char16        &outMark,
  41.                             Str255        outName);
  42.     */
  43.     
  44. protected:
  45.  
  46.     CMoviePane*        mMoviePane;
  47.  
  48. };